home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
011
/
dsktst.arc
/
CLRCRT.C
< prev
next >
Wrap
Text File
|
1985-08-06
|
640b
|
18 lines
#include "dos.h"
/******************************************************************************
* *
* clear crt & reset cursor *
* *
******************************************************************************/
clrcrt(a) /* attribute */
int a;
{
union REGS reg;
reg.x.cx = 2000; /* chars on crt */
reg.h.bh = 0; /* page number */
reg.h.bl = a; /* set attribute */
reg.h.al = ' '; /* blank out screen */
reg.h.ah = 9; /* write char/attr */
int86(0x10,®,®); /* clr the screen */
}